home *** CD-ROM | disk | FTP | other *** search
- package javax.swing.plaf.basic;
-
- import javax.swing.JComponent;
- import javax.swing.JEditorPane;
- import javax.swing.plaf.ComponentUI;
- import javax.swing.text.EditorKit;
- import javax.swing.text.JTextComponent;
-
- public class BasicEditorPaneUI extends BasicTextUI {
- public static ComponentUI createUI(JComponent var0) {
- return new BasicEditorPaneUI();
- }
-
- public EditorKit getEditorKit(JTextComponent var1) {
- JEditorPane var2 = (JEditorPane)((BasicTextUI)this).getComponent();
- return var2.getEditorKit();
- }
-
- protected String getPropertyPrefix() {
- return "EditorPane";
- }
- }
-